home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh -f
- # SimpleNetStarter backup program, backs up all of the necessary files to
- # restore in case of a system failure.
- # Copyright 1992 NeXT Computer, Inc. All rights reserved.
-
- # start at root
- set v
- cd /
-
- # backup the current .SNScreateBackup if one exists
- if [ -f /tmp/.SNScreateBackup ]; then
- /bin/mv /tmp/.SNScreateBackup /tmp/.SNScreateBackup~
- fi
-
- # create the list of existing files
- while read file; do
- if [ -f $file ]; then
- /bin/echo -n $file " " >> /tmp/.SNScreateBackup
- fi
- done << TEST
- /etc/hosts
- /etc/hostconfig
- /etc/sendmail/sendmail.mailhost.cf
- /etc/sendmail/sendmail.subsidiary.cf
- /etc/sendmail/sendmail.sharedsubsidiary.cf
- /etc/bootptab
- /etc/bootparams
- /etc/crontab
- /etc/exports
- /private/tftpboot/mach
- /private/tftpboot/boot
- TEST
-
- # add netinfo to the list
- /bin/echo "/etc/netinfo " >> /tmp/.SNScreateBackup
- read BACKUPFILES < /tmp/.SNScreateBackup
-
- # create the tar archive
- /bin/tar cf - $BACKUPFILES | /usr/ucb/compress -c > /etc/systemTar.Z
-
- # delete the backup file
- rm /tmp/.SNScreateBackup
-
- #restore the old one
- if [ -f /tmp/.SNScreateBackup~ ]; then
- /bin/mv /tmp/.SNScreateBackup~ /tmp/.SNScreateBackup
- fi
-
-